home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'Jasc Software, Inc.',
- 'Copyright': 'Copyright (c) 2003-2004 Jasc Software, Inc. All rights reserved.',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def MIPTemplate_Print():
- return {
- 'PrintingOptions': {
- 'PrinterName': None,
- 'Orientation': 0,
- 'NumCopies': 1,
- 'Negative': App.Constants.Boolean.false,
- 'Background': App.Constants.Boolean.false,
- 'BackgroundColor': (255,255,255),
- 'OutputOption': 0,
- 'CornerCropmarks': App.Constants.Boolean.false,
- 'CenterCropmarks': App.Constants.Boolean.false,
- 'RegistrationMarks': App.Constants.Boolean.false,
- 'ImageLabels': App.Constants.Boolean.false,
- 'Header': App.Constants.Boolean.false,
- 'HeaderText': r'',
- 'Footer': App.Constants.Boolean.false,
- 'FooterText': r'',
- 'CMYKLabels': App.Constants.Boolean.false,
- 'PrintQuality': 600,
- 'PaperSize': 1
- },
- 'MIPCmdFile': r'CD/DVD Labels',
- 'TemplateMetric': App.Constants.Boolean.false,
- 'PageDimensions': (8.5,11),
- 'TemplateCategory': r'Avery',
- 'TemplateDescription': 'Etichette per CD/DVD',
- 'Template': [{
- 'CellPosition': (1.87,0.62),
- 'CellSize': (4.76,4.76),
- 'ImagePlacement': 2,
- 'EllipticalCell': True,
- 'ImagePath': r'',
- 'RotationAngle': 0,
- 'ImagePosition': (0,0),
- 'ImageSize': (0,0)
- },{
- 'CellPosition': (1.87,5.62),
- 'CellSize': (4.76,4.76),
- 'ImagePlacement': 2,
- 'EllipticalCell': True,
- 'ImagePath': r'',
- 'RotationAngle': 0,
- 'ImagePosition': (0,0),
- 'ImageSize': (0,0)
- }]
- }
-
- def Do(Environment):
- App.Do( Environment, 'Print', MIPTemplate_Print())
-
-